home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / Cosmic Defender.swf / scripts / DefineButton2_279 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2006-06-13  |  240 b   |  14 lines

  1. on(press){
  2.    if(_root.sound_on)
  3.    {
  4.       _root.splash_music.stop();
  5.       _root.sound_on = false;
  6.    }
  7.    else
  8.    {
  9.       _root.track_play = true;
  10.       _root.splash_music.start(0,99999);
  11.       _root.sound_on = true;
  12.    }
  13. }
  14.